home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / utils / disk-man / mtools-3.000 / mtools-3 / mtools-3.0 / fs.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-01-31  |  366 b   |  24 lines

  1. #ifndef MTOOLS_FS_H
  2. #define MTOOLS_FS_H
  3.  
  4. #include "stream.h"
  5.  
  6.  
  7. typedef struct FsPublic_t {
  8.     Class_t *Class;
  9.     int refs;
  10.     Stream_t *Next;
  11.     Stream_t *Buffer;
  12.  
  13.     int serialized;
  14.     unsigned long serial_number;
  15.     int cluster_size;
  16.     int sector_size;
  17.     int fat_error;
  18. } FsPublic_t;
  19.  
  20. Stream_t *fs_init(char drive, int mode);
  21. int fat_free(Stream_t *Fs, unsigned int fat);
  22.  
  23. #endif
  24.